home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / MindScape.swf / scripts / DefineButton2_156 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2007-12-04  |  260 b   |  14 lines

  1. on(release){
  2.    if(!menuOut)
  3.    {
  4.       _root.attachMovie("MenuBox","menuBox",3);
  5.       _root.menuBox.targetY = 20;
  6.       menuOut = true;
  7.    }
  8.    else
  9.    {
  10.       _root.menuBox.targetY = - (_root.menuBox._height + 5);
  11.       menuOut = false;
  12.    }
  13. }
  14.